home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 104 / MacAddict_104_2005-04.iso / Software / Internet & Communication / WordPress 1.2.2 freeware.dmg / wordpress / wp-admin / templates.php < prev    next >
PHP Script  |  2004-12-15  |  6KB  |  184 lines

  1. <?php
  2. require_once('../wp-includes/wp-l10n.php');
  3.  
  4. $title = __("Template & file editing");
  5.  
  6. function add_magic_quotes($array) {
  7.     foreach ($array as $k => $v) {
  8.         if (is_array($v)) {
  9.             $array[$k] = add_magic_quotes($v);
  10.         } else {
  11.             $array[$k] = addslashes($v);
  12.         }
  13.     }
  14.     return $array;
  15.  
  16. function validate_file($file) {
  17.     if ('..' == substr($file,0,2))
  18.         die (__('Sorry, can’t edit files with ".." in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in.'));
  19.     
  20.     if (':' == substr($file,1,1))
  21.         die (__('Sorry, can’t call files with their real path.'));
  22.  
  23.     if ('/' == substr($file,0,1))
  24.         $file = '.' . $file;
  25.     
  26.     $file = stripslashes($file);
  27.     $file = str_replace('../', '', $file);
  28.  
  29.     return $file;
  30. }
  31.  
  32. if (!get_magic_quotes_gpc()) {
  33.     $_GET    = add_magic_quotes($_GET);
  34.     $_POST   = add_magic_quotes($_POST);
  35.     $_COOKIE = add_magic_quotes($_COOKIE);
  36. }
  37.  
  38. $wpvarstoreset = array('action','standalone','redirect','profile','error','warning','a','file');
  39. for ($i=0; $i<count($wpvarstoreset); $i += 1) {
  40.     $wpvar = $wpvarstoreset[$i];
  41.     if (!isset($$wpvar)) {
  42.         if (empty($_POST["$wpvar"])) {
  43.             if (empty($_GET["$wpvar"])) {
  44.                 $$wpvar = '';
  45.             } else {
  46.                 $$wpvar = $_GET["$wpvar"];
  47.             }
  48.         } else {
  49.             $$wpvar = $_POST["$wpvar"];
  50.         }
  51.     }
  52. }
  53.  
  54. switch($action) {
  55.  
  56. case 'update':
  57.  
  58.     $standalone = 1;
  59.     require_once("admin-header.php");
  60.  
  61.     if ($user_level < 5) {
  62.         die(__('<p>You have do not have sufficient permissions to edit templates for this blog.</p>'));
  63.     }
  64.  
  65.     $newcontent = stripslashes($_POST['newcontent']);
  66.     $file = $_POST['file'];
  67.     $file = validate_file($file);
  68.     $real_file = '../' . $file;
  69.     if (is_writeable($real_file)) {
  70.         $f = fopen($real_file, 'w+');
  71.         fwrite($f, $newcontent);
  72.         fclose($f);
  73.         header("Location: templates.php?file=$file&a=te");
  74.     } else {
  75.         header("Location: templates.php?file=$file");
  76.     }
  77.  
  78.     exit();
  79.  
  80. break;
  81.  
  82. default:
  83.  
  84.     require_once('admin-header.php');
  85.  
  86.     if ($user_level <= 5) {
  87.         die(__('<p>You have do not have sufficient permissions to edit templates for this blog.</p>'));
  88.     }
  89.  
  90.     if ('' == $file) {
  91.         if ('' != get_settings('blogfilename')) {
  92.             $file = get_settings('blogfilename');
  93.         } else {
  94.             $file = 'index.php';
  95.         }
  96.     }
  97.  
  98.     $file = validate_file($file);    
  99.     $real_file = '../' . $file;
  100.     
  101.     if (!is_file($real_file))
  102.         $error = 1;
  103.  
  104.     if ((substr($file,0,2) == 'wp') and (substr($file,-4,4) == '.php') and ($file != 'wp.php'))
  105.         $warning = __(' — this is a WordPress file, be careful when editing it!');
  106.     
  107.     if (!$error) {
  108.         $f = fopen($real_file, 'r');
  109.         $content = fread($f, filesize($real_file));
  110.         $content = htmlspecialchars($content);
  111. //        $content = str_replace("</textarea","</textarea",$content);
  112.     }
  113.  
  114.     ?>
  115. <?php if (isset($_GET['a'])) : ?>
  116.  <div class="updated"><p><?php _e('File edited successfully.') ?></p></div>
  117. <?php endif; ?>
  118.  <div class="wrap"> 
  119.   <?php
  120.     echo "<p>" . sprintf(__('Editing <strong>%s</strong>'), $file) . " $warning</p>";
  121.     
  122.     if (!$error) {
  123.     ?> 
  124.   <form name="template" action="templates.php" method="post"> 
  125.      <textarea cols="80" rows="21" style="width:98%; font-family: 'Courier New', Courier, monopace; font-size:small;" name="newcontent" tabindex="1"><?php echo wp_specialchars($content) ?></textarea> 
  126.      <input type="hidden" name="action" value="update" /> 
  127.      <input type="hidden" name="file" value="<?php echo wp_specialchars($file, 1); ?>" /> 
  128.      <p class="submit">
  129.      <?php
  130.         if (is_writeable($real_file)) {
  131.             echo "<input type='submit' name='submit' value='Update File »' tabindex='2' />";
  132.         } else {
  133.             echo "<input type='button' name='oops' value='" . __('(You cannot update that file/template: must make it writable, e.g. CHMOD 666)') ."' tabindex='2' />";
  134.         }
  135.         ?> 
  136. </p>
  137.    </form> 
  138.   <?php
  139.     } else {
  140.         echo '<div class="error"><p>' . __('Oops, no such file exists! Double check the name and try again, merci.') . '</p></div>';
  141.     }
  142.     ?> 
  143. </div> 
  144. <div class="wrap">
  145.   <p><?php _e('To edit a file, type its name here. You can edit any file <a href="http://wiki.wordpress.org/index.php/MakeWritable" title="Read more about making files writable">writable by the server</a>, e.g. CHMOD 666.') ?></p> 
  146.   <form name="file" action="templates.php" method="get"> 
  147.     <input type="text" name="file" /> 
  148.     <input type="submit" name="submit"  value="<?php _e('Edit file »') ?>" /> 
  149.   </form> 
  150.   <p><?php _e('Common files: (click to edit)') ?></p>
  151.   <ul>
  152.     <li><a href="templates.php?file=index.php"><?php _e('Main Index') ?> </a></li>
  153.     <li><a href="templates.php?file=wp-comments.php">Comments</a></li>
  154.     <li><a href="templates.php?file=wp-comments-popup.php"><?php _e('Popup comments') ?> </a></li>
  155.     <li><a href="templates.php?file=.htaccess"><?php _e('.htaccess (for rewrite rules)') ?></a></li>
  156.     <li><a href="templates.php?file=my-hacks.php"><?php _e('my-hacks.php (legacy hacks support)') ?></a></li>
  157.     </ul>
  158. <?php
  159. $plugins_dir = @ dir(ABSPATH . 'wp-content/plugins');
  160. if ($plugins_dir) {
  161.     while(($file = $plugins_dir->read()) !== false) {
  162.       if ( !preg_match('|^\.+$|', $file) && preg_match('|\.php$|', $file) ) 
  163.         $plugin_files[] = $file;
  164.     }
  165. }
  166. if ($plugins_dir || $plugin_files) :
  167. ?>
  168.   <p>Plugin files:</p>
  169.   <ul>
  170. <?php foreach($plugin_files as $plugin_file) : ?>
  171.     <li><a href="templates.php?file=wp-content/plugins/<?php echo $plugin_file; ?>"><?php echo $plugin_file; ?></a></li>
  172. <?php endforeach; ?>
  173.   </ul>
  174. <?php endif; ?>
  175.   <p><?php _e('Note: of course, you can also edit the files/templates in your text editor of choice and upload them. This online editor is only meant to be used when you don’t have access to a text editor or FTP client.') ?></p>
  176. </div> 
  177. <?php
  178.  
  179. break;
  180. }
  181.  
  182. include("admin-footer.php") ?> 
  183.